html {
    background-color: black;
    color: lightgray;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    display: flex;
    justify-content: center;
}

a {
    text-decoration: underline;
    color: lightgray;
}

.navbar {
    position: fixed;
    height: auto;
    max-width: 1080px;
    width: 100%;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    flex-wrap: wrap;
    z-index: 1;
}

.navbar img {
    height: 50px;
}

.navbar a, .contact a {
    margin: 1em;
}

.navbar a:hover {
    text-decoration: underline;
}

.bio {
    max-width: 1080px;
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bio img {
    max-height: 250px;
    width: fit-content;
}

.bio p {
    text-align: center;
}

.music {
    max-width: 1080px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gigs {
    max-width: 1080px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gigs table {
    text-align: center;
}

td, th {
    border: 1px solid lightgray;
    padding: 0.5em;
}

.contact {
    text-align: center;
    margin-bottom: 50px;
}

